home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 3
/
Cream of the Crop 3.iso
/
comm
/
wnos5src.zip
/
DAEMON.H
< prev
next >
Wrap
Text File
|
1993-08-09
|
581b
|
28 lines
#ifndef _DAEMON_H
#define _DAEMON_H
struct daemon {
char *name;
unsigned stksize;
void (*fp) __ARGS((int,void *,void *));
};
#define NULLDAEMON ((struct daemon *)0)
extern struct daemon Daemons[];
/* In event.h */
void event __ARGS((int,void *,void *));
/* In main.c: */
void keyboard __ARGS((int,void *,void *));
void network __ARGS((int,void *,void *));
void display __ARGS((int,void *,void *));
/* In kernel.c: */
void killer __ARGS((int,void *,void *));
/* In timer.c: */
void timerproc __ARGS((int,void *,void *));
#endif /* _DAEMON_H */